Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corrected links in templates #773

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

skramm
Copy link

@skramm skramm commented Mar 1, 2024

I noticed some (6) templates still had links in the file base.html on http://alexis.notmyidea.org/pelican/
I wrote and ran a small bash script to replace all of them with http://getpelican.com, globally:

find . -type f -exec grep -l alexis.notmyidea {} \; >/tmp/pelicanfiles
for a in $(cat /tmp/pelicanfiles)
do
	echo $a
	sed 's/alexis.notmyidea.org\/pelican/getpelican.com/g' $a >${a}_NEW
	mv ${a}_NEW $a
done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant